home *** CD-ROM | disk | FTP | other *** search
- /* BL.H ObjektKit with Window and CANCEL, RESIZE and MOVE Elements
- added to it.
- */
-
- #ifndef __BL_H_
- #define __BL_H_
-
- #include "element.h"
- #include "objkit.h"
- #include "window.h"
-
- class Bl : public ObjectKit
- {
- public:
- Element* cancel_element;
- Element* move_element; Element* resize_element;
- Window* w1;
-
- virtual int active() { return w1->active(); }
- void show_window();
- virtual void hide() { w1->hide(); }
- virtual void rearrange(); // after MOVE or RESIZE
-
- Bl(rect coord, char* fName = "", char* h = "", int shadow = 0,
- int res = 0, BORDERS b_type = SHOW_BORDER,
- BORDERS hdr_b_type = SHOW_BORDER,
- int pat = 0, int hdr_pat = 0, int elem_pat = 0);
- };
-
- #endif __BL_H_